home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pcrobots.zip / WHATS.NEW < prev   
Text File  |  1992-11-01  |  4KB  |  115 lines

  1. What's new in V1.3
  2. ===================
  3. Ctrl-C no longer causes a crash - it is ignored totally.
  4.  
  5. Exiting by pressing ESC returns an error level of 200 (why not? :-) )
  6. Errorlevel values are:
  7.  -1  - ERROR
  8.  0-n - Winning Robot
  9.  100 - Draw (>=2 left alive)
  10.  101 - Draw (0 left alive)
  11.  200 - Esc pressed
  12.  
  13. First attempt to cure the 'display.sys' bug.
  14.  
  15. A 'superfast' version is available. This is a separate program
  16. and has no output at all, until the results phase.
  17.  
  18. A '-r' option is supplied, this lets you set the random number
  19. seed to allow identical runs to be made (the normal seed
  20. generator has been made more 'random' as well).
  21.  
  22. A 'get_robot_id' function is supplied to provide the current
  23. robot's ID number.
  24.  
  25. The configure function now returns the PCRobots version number in
  26. AX (the C and Pascal library functions have been modified to
  27. cause the robot to exit if the program is run outside PCRobots).
  28.  
  29. An IFF system is now operational.
  30.  
  31. A facility to identify robots by name is present now.
  32.  
  33. Shells now pass through damaging/slow/refueling squares (they
  34. were originally supposed to do).
  35.  
  36. There is now a timeout. A robot has got a time limit on what it
  37. can do between moves. On a 33MHz 386 this is typically 3 seconds,
  38. but the time should varied to suit the computer. (the main reason
  39. for this is to prevent robots getting stuck in loops with no way
  40. out - I can increase the time limit if necessary).
  41.  
  42. Ctrl-Break will now kill all robots, even ones stuck in loops
  43. (note, this *kills* all robots, so it's not the same as ESC).
  44.  
  45. There is a lot more security in the system now. Robots are
  46. prevented from doing a lot of DOS functions. If you ever get a
  47. 'robot killed by system - violation xxxx' message, this is what's
  48. happened. If you didn't specifically do anything risky, let me
  49. know and I'll consider allowing that function. All the robots
  50. I've been able to test have been OK with the current
  51. restrictions. See the full documentation for a table of allowable
  52. function calls.
  53.  
  54. DOS Memory allocation is now carried out by PCRobots rather than
  55. by DOS. This is to enforce the 64k limit on robot space (needed
  56. for EMS usage). Currently only the 'set block size' function is
  57. implemented as this is the only one which is used internally by
  58. most compilers. Other memory allocation functions are illegal so
  59. far. You should now be able to use 'malloc' and 'free' freely
  60. inside C programs.
  61.  
  62. A 'postmortem' display is given when the game is over, this tells
  63. you why a robot was killed or which robot killed it.
  64.  
  65. The '-v' option gives a verbose output for each robot listing a
  66. lot of the final details (these will also be copied to the log if
  67. a log file is being produced).
  68.  
  69. The int 0e0h vector is constantly checked for tampering and a
  70. guilty robot is killed.
  71.  
  72. The settings for int 34 -> int 3f are kept for each robot. This
  73. may allow floating point numbers to be used directly by robots
  74. (I'll have to check first though).
  75.  
  76. The file type (COM or EXE) is now determined from the header
  77. rather than the file extension.
  78.  
  79. EXE files are checked for a valid stack.
  80.  
  81. EMS is now supported - you need a driver capable of supporting
  82. LIM EMS V4.0 or later (eg QEMM386 and EMM386 are suitable). This
  83. means that you can now have up to 20 robots at once!
  84.  
  85. Robot teams are supported (see the doc file).
  86.  
  87. The -f command line parameter has a default filename now
  88. (pcrobots.log).
  89.  
  90. What's new in V1.2
  91. ===================
  92. The robot positioning bug has been fixed.
  93.  
  94. The '-a' parameter is allowed to support arena files of different
  95. names.
  96.  
  97. DOS interrupts are intercepted to deal with two DOS functions (at
  98. present). These are 'file read' and 'file write'. File read is
  99. totally disallowed (this is to prevent certain forms of
  100. cheating).
  101. File write is intercepted to capture writes to stdout. This output
  102. can be displayed in a 'supported' way now. See the doc file for
  103. details.
  104.  
  105. An errorlevel value is given when pcrobots finishes. This is '-1'
  106. if no robot won, or the program couldn't complete for some reason.
  107. Otherwise the value identifies the winning robot.
  108.  
  109. I've included PCROBOT6.PAS which is an alternative unit for TP V6.0
  110.  
  111. What's new in V1.1
  112. ===================
  113. An anomoly with the memory allocation strategy for programs was causing
  114. trouble with Zortech C compilers. This has been corrected.
  115.